This is, how my config file is right now. (see picture)
Is there any chance, to add a second html file on a different path? The actual path is content: ["public/index.html"],. Is it possible to add a html path like: content: ["public/index.html; public/info/contact.html"],?
The content value is an array of strings, so you might try:
content: ['public/index.html', 'public/info/contact.html']
You could also use the glob pattern to include all files under public.
content: ['./public/**/*.html']
More information: https://tailwindcss.com/docs/content-configuration